home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / pdox693.zip / TI556.ASC < prev    next >
Text File  |  1992-08-12  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  PARADOX                                NUMBER  :  556
  9.   VERSION  :  3.X
  10.        OS  :  PC DOS
  11.      DATE  :  August 12, 1992                          PAGE  :  1/2
  12.  
  13.     TITLE  :  PPROG: QEditDoIt NOT DEFINED
  14.  
  15.  
  16.  
  17.  
  18.   The Error message "QEditDoIt Not Defined," indicates your
  19.   personal programmer application is trying to read the "QEditDoIt"
  20.   procedure from one of the libraries associated with your
  21.   application.
  22.  
  23.   This error is most often caused when a non-editing menu choice is
  24.   modified and the application includes an editing menu choice that
  25.   selects records.  When the modifications are processed (using
  26.   "Do_It"), new script files are created, but "QEditDoIt" does not
  27.   get written to your application's utility library.
  28.  
  29.   The solution is as follows:
  30.  
  31.   Create the following script using interactive Paradox's script
  32.   editor.  From Paradox's (interactive, not Personal Programmer)
  33.   main menu, select {Scripts} {Edit} {Write}, and type "QEdWrite"
  34.   for the name of the script file.
  35.  
  36.        Type the following 20 lines in the script file:
  37.  
  38.  
  39.             Proc QEditDoIt()
  40.  
  41.               Do_It!
  42.  
  43.               Message "Posting changes..."
  44.  
  45.               UpImage
  46.               if (useDelTable) then
  47.                 Subtract "Deleted" sourceTbl
  48.                 Delete "Deleted"
  49.               endif
  50.  
  51.               Add "Answer" sourceTbl
  52.  
  53.               ClearAll
  54.               Clear
  55.             Endproc
  56.  
  57.             WriteLib "ApnameUtl" QEditDoIt
  58.             Release Procs QEditDoIt
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.   PRODUCT  :  PARADOX                                NUMBER  :  556
  75.   VERSION  :  3.X
  76.        OS  :  PC DOS
  77.      DATE  :  August 12, 1992                          PAGE  :  2/2
  78.  
  79.     TITLE  :  PPROG: QEditDoIt NOT DEFINED
  80.  
  81.  
  82.  
  83.  
  84.   Then, save this script file to the personal programmer's
  85.   subdirectory in which this application's library resides.
  86.  
  87.   Note:  ApnameUtl in line 19, above, is the name of your
  88.   application followed by the letters Utl.  If your applicaton is
  89.   called Video, then line 19 would read as follows:
  90.  
  91.             WriteLib "VideoUtl" QEditDoIt
  92.  
  93.   Finally, play this script file, and you will then be able to
  94.   Choose an Edit menu selection in your application without getting
  95.   the error message.
  96.  
  97.   From this point on, when you finish modifying this PPROG
  98.   application, you need only play the "QEdWrite" script.
  99.  
  100.   DISCLAIMER: You have the right to use this technical information
  101.   subject to the terms of the No-Nonsense License Statement that
  102.   you received with the Borland product to which this information
  103.   pertains.
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.